/* =========================================================
   PEOPLE HERO
========================================================= */

.sora-members-hero {
  padding: clamp(80px, 8vw, 120px) 24px;

  background:
    linear-gradient(
      135deg,
      #f7fcff 0%,
      #ffffff 52%,
      #eef9fd 100%
    );
}


.sora-members-hero__inner {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(420px, 1.1fr);

  align-items: center;

  max-width: 1180px;

  margin: 0 auto;

  gap: clamp(48px, 7vw, 96px);
}


.sora-members-hero__en,
.sora-members__label {
  margin: 0 0 10px;

  color: #2597bd;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.18em;
}


.sora-members-hero__title {
  margin: 0 0 34px;

  color: #173b57;

  font-size: clamp(22px, 2vw, 28px);

  line-height: 1.5;
}


.sora-members-hero__catch {
  margin: 0 0 26px;

  color: #173b57;

  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;

  line-height: 1.4;
}


.sora-members-hero__text {
  margin: 0 0 12px;

  color: #455966;

  font-size: 16px;

  line-height: 2;
}


.sora-members-hero__visual {
  overflow: hidden;

  border-radius: 28px;

  box-shadow:
    0 24px 60px
    rgba(23, 59, 87, 0.12);
}


.sora-members-hero__visual img {
  display: block;

  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;
}



/* =========================================================
   OUR TEAM
========================================================= */

.sora-members {
  padding: clamp(80px, 9vw, 120px) 24px;

  background: #ffffff;
}


.sora-members__inner {
  max-width: 1120px;

  margin: 0 auto;
}


.sora-members__heading {
  max-width: 720px;

  margin-bottom: 56px;
}


.sora-members__title {
  margin: 0;

  color: #173b57;

  font-size: clamp(30px, 3vw, 42px);

  line-height: 1.4;
}


.sora-members__intro {
  margin: 22px 0 0;

  color: #455966;

  font-size: 16px;

  line-height: 2;
}




/* =========================================================
   MEMBER GRID
   PC
========================================================= */

.sora-members__grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 24px;
}

/* =========================================================
   MEMBER CARD
========================================================= */

.sora-member-card {
  display: flex;
  flex-direction: column;

  height: 100%;

  overflow: hidden;

  border: 1px solid #dfeef3;
  border-radius: 22px;

  background: #ffffff;

  box-shadow:
    0 12px 32px rgba(23, 59, 87, 0.06);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


@media (hover: hover) {

  .sora-member-card:hover {
    transform: translateY(-5px);

    box-shadow:
      0 18px 42px
      rgba(23, 59, 87, 0.10);
  }

}


/* =========================================================
   ILLUSTRATION
========================================================= */

.sora-member-card__visual {
  display: flex;

  align-items: flex-end;
  justify-content: center;

  height: 290px;

  padding:
    20px
    18px
    0;

  background:
    linear-gradient(
      180deg,
      #f5fbfd 0%,
      #eef9fc 100%
    );
}


.sora-member-card__visual img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center bottom;
}



/* =========================================================
   TEXT
========================================================= */

.sora-member-card__body {
  flex: 1;

  padding:
    20px
    20px
    24px;
}


.sora-member-card__company {
  margin: 0 0 8px;

  color: #2597bd;

  font-size: 11px;
  font-weight: 700;

  line-height: 1.5;

  overflow-wrap: anywhere;
}

.sora-member-card__name {
  margin: 0;

  color: #173b57;

  font-size: 21px;
  font-weight: 700;

  line-height: 1.5;
}


.sora-member-card__role {
  margin: 6px 0 0;

  color: #667984;

  font-size: 14px;

  line-height: 1.6;
}


.sora-member-card__description {
  margin: 18px 0 0;

  padding-top: 18px;

  border-top:
    1px solid
    #e3eef3;

  color: #455966;

  font-size: 14px;

  line-height: 1.85;
}

.sora-members-about {
  padding:
    64px
    24px;

  background: #f5fbfd;
}


.sora-members-about__inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  max-width: 1080px;

  margin: 0 auto;

  gap: 40px;
}


.sora-members-about h2 {
  margin: 0 0 14px;

  color: #173b57;

  font-size: 30px;
}


.sora-members-about p {
  margin: 0;

  color: #455966;

  line-height: 1.9;
}


.sora-members-about__link {
  display: inline-flex;

  align-items: center;

  flex-shrink: 0;

  min-height: 54px;

  padding:
    0
    24px;

  gap: 18px;

  border:
    1px solid
    #2597bd;

  border-radius: 999px;

  color: #187da2;

  background: #ffffff;

  font-weight: 700;

  text-decoration: none;
}


.sora-members-about__link {
  display: inline-flex;

  align-items: center;

  flex-shrink: 0;

  min-height: 54px;

  padding:
    0
    24px;

  gap: 18px;

  border:
    1px solid
    #2597bd;

  border-radius: 999px;

  color: #187da2;

  background: #ffffff;

  font-weight: 700;

  text-decoration: none;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}


@media (hover: hover) {

  .sora-members-about__link:hover {
    color: #ffffff;

    background: #2597bd;

    transform: translateY(-2px);
  }

}


.sora-members-about__link:focus-visible {
  outline:
    3px solid
    rgba(37, 151, 189, 0.30);

  outline-offset: 4px;
}

@media (max-width: 767px) {

  .sora-members-about {
    padding:
      56px
      20px;
  }


  .sora-members-about__inner {
    display: block;
  }


  .sora-members-about__link {
    width: 100%;

    justify-content: space-between;

    margin-top: 26px;
  }

}

/* =========================================================
   RESPONSIVE MEMBER GRID
========================================================= */
@media (max-width: 1100px) {

  .sora-members__grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

}

/* タブレット */
@media (max-width: 820px) {

  .sora-members__grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* =========================================================
   HERO TABLET
========================================================= */

@media (max-width: 900px) {

  .sora-members-hero__inner {
    grid-template-columns: 1fr;

    gap: 42px;
  }


  .sora-members-hero__visual {
    width: 100%;
    max-width: 720px;

    margin: 0 auto;
  }

}

/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 767px) {

  .sora-members-hero {
    padding:
      64px
      20px
      72px;
  }


  .sora-members-hero__inner {
    gap: 34px;
  }


  .sora-members-hero__title {
    margin-bottom: 24px;

    font-size: 18px;
  }


  .sora-members-hero__catch {
    font-size: 31px;
  }


  .sora-members-hero__text {
    font-size: 15px;

    line-height: 1.9;
  }


  .sora-members-hero__visual {
    border-radius: 20px;
  }


  .sora-members {
    padding:
      72px
      20px;
  }


  .sora-members__heading {
    margin-bottom: 36px;
  }


  .sora-members__title {
    font-size: 28px;
  }


  .sora-members__intro {
    font-size: 15px;

    line-height: 1.9;
  }


  .sora-members__grid {
    grid-template-columns: 1fr;

    gap: 22px;
  }


  .sora-member-card {
    border-radius: 20px;
  }


  .sora-member-card__visual {
    height: 300px;

    padding:
      22px
      20px
      0;
  }


  .sora-member-card__body {
    padding:
      22px
      20px
      24px;
  }


  .sora-member-card__name {
    font-size: 21px;
  }

}
/* =========================================================
   CONTACT CTA
========================================================= */

.sora-members-contact {
  padding: clamp(72px, 8vw, 100px) 24px;

  background: #eaf7fc;
}


.sora-members-contact__inner {
  max-width: 820px;

  margin: 0 auto;

  padding: clamp(36px, 5vw, 54px);

  border: 1px solid #d7e8ef;
  border-radius: 28px;

  background: #ffffff;

  text-align: center;

  box-shadow:
    0 18px 48px
    rgba(23, 59, 85, 0.10);
}


.sora-members-contact__title {
  margin: 0;

  color: #173b57;

  font-size: clamp(28px, 3.4vw, 40px);

  line-height: 1.5;
}


.sora-members-contact__text {
  max-width: 620px;

  margin: 22px auto 0;

  color: #455966;

  font-size: 16px;

  line-height: 1.9;
}


.sora-members-contact__button {
  display: inline-flex;

  align-items: center;
  justify-content: space-between;

  min-width: 260px;
  min-height: 56px;

  margin-top: 30px;

  padding: 0 24px;

  gap: 24px;

  border-radius: 999px;

  color: #ffffff;

  background: #176f99;

  font-weight: 700;

  text-decoration: none;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}


@media (hover: hover) {

  .sora-members-contact__button:hover {
    background: #0f5477;

    transform: translateY(-2px);
  }

}


.sora-members-contact__button:focus-visible {
  outline: 3px solid #ffbf47;

  outline-offset: 4px;
}


@media (max-width: 767px) {

  .sora-members-contact {
    padding:
      64px
      20px;
  }


  .sora-members-contact__inner {
    padding:
      34px
      22px;

    border-radius: 22px;
  }


  .sora-members-contact__title {
    font-size: 26px;
  }


  .sora-members-contact__text {
    font-size: 15px;
  }


  .sora-members-contact__button {
    width: 100%;

    min-width: 0;
  }

}